home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / alien-glow-bullet.scm < prev    next >
Text File  |  2009-12-15  |  4KB  |  110 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; Alien Glow themed bullets for web pages
  5. ; Copyright (c) 1997 Adrian Likins
  6. ; aklikins@eos.ncsu.edu
  7. ;
  8. ; This program is free software; you can redistribute it and/or modify
  9. ; it under the terms of the GNU General Public License as published by
  10. ; the Free Software Foundation; either version 2 of the License, or
  11. ; (at your option) any later version.
  12. ;
  13. ; This program is distributed in the hope that it will be useful,
  14. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. ; GNU General Public License for more details.
  17. ;
  18. ; You should have received a copy of the GNU General Public License
  19. ; along with this program; if not, write to the Free Software
  20. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. (define (script-fu-alien-glow-bullet radius
  23.                                      glow-color
  24.                                      bg-color
  25.                                      flatten)
  26.  
  27.   (define (center-ellipse img cx cy rx ry op aa feather frad)
  28.     (gimp-ellipse-select img (- cx rx) (- cy ry) (+ rx rx) (+ ry ry)
  29.                          op aa feather frad)
  30.   )
  31.  
  32.  
  33.   (let* (
  34.         (img (car (gimp-image-new radius radius RGB)))
  35.         (border (/ radius 4))
  36.         (diameter (* radius 2))
  37.         (half-radius (/ radius 2))
  38.         (blend-start (+ half-radius (/ half-radius 2)))
  39.         (bullet-layer (car (gimp-layer-new img
  40.                                            diameter diameter RGBA-IMAGE
  41.                                            "Ruler" 100 NORMAL-MODE)))
  42.         (glow-layer (car (gimp-layer-new img diameter diameter RGBA-IMAGE
  43.                                          "ALien Glow" 100 NORMAL-MODE)))
  44.         (bg-layer (car (gimp-layer-new img diameter diameter RGB-IMAGE
  45.                                        "Background" 100 NORMAL-MODE)))
  46.         )
  47.  
  48.     (gimp-context-push)
  49.  
  50.     (gimp-image-undo-disable img)
  51.     (gimp-image-resize img diameter diameter 0 0)
  52.     (gimp-image-add-layer img bg-layer 1)
  53.     (gimp-image-add-layer img glow-layer -1)
  54.     (gimp-image-add-layer img bullet-layer -1)
  55.  
  56.     ; (gimp-layer-set-lock-alpha ruler-layer TRUE)
  57.     (gimp-context-set-background bg-color)
  58.     (gimp-edit-fill bg-layer BACKGROUND-FILL)
  59.     (gimp-edit-clear glow-layer)
  60.     (gimp-edit-clear bullet-layer)
  61.  
  62.     (center-ellipse img radius radius half-radius half-radius
  63.                     CHANNEL-OP-REPLACE TRUE FALSE 0)
  64.  
  65.     ; (gimp-rect-select img (/ height 2) (/ height 2) length height CHANNEL-OP-REPLACE FALSE 0)
  66.     (gimp-context-set-foreground '(90 90 90))
  67.     (gimp-context-set-background '(0 0 0))
  68.  
  69.     (gimp-edit-blend bullet-layer FG-BG-RGB-MODE NORMAL-MODE
  70.                      GRADIENT-RADIAL 100 0 REPEAT-NONE FALSE
  71.                      FALSE 0 0 TRUE
  72.                      blend-start blend-start
  73.                      (+ half-radius radius) (+ half-radius radius))
  74.  
  75.     (gimp-context-set-foreground glow-color)
  76.     (gimp-selection-grow img border)
  77.     (gimp-selection-feather img  border)
  78.     (gimp-edit-fill glow-layer FOREGROUND-FILL)
  79.     (gimp-selection-none img)
  80.     (if (>= radius 16)
  81.         (plug-in-gauss-rle RUN-NONINTERACTIVE img glow-layer 25 TRUE TRUE)
  82.         (plug-in-gauss-rle RUN-NONINTERACTIVE img glow-layer 12 TRUE TRUE)
  83.     )
  84.  
  85.     (if (= flatten TRUE)
  86.         (gimp-image-flatten img)
  87.     )
  88.     (gimp-image-undo-enable img)
  89.     (gimp-display-new img)
  90.  
  91.     (gimp-context-pop)
  92.   )
  93. )
  94.  
  95. (script-fu-register "script-fu-alien-glow-bullet"
  96.   _"_Bullet..."
  97.   _"Create a bullet graphic with an eerie glow for web pages"
  98.   "Adrian Likins"
  99.   "Adrian Likins"
  100.   "1997"
  101.   ""
  102.   SF-ADJUSTMENT _"Radius"           '(16 1 100 1 10 0 1)
  103.   SF-COLOR      _"Glow color"       '(63 252 0)
  104.   SF-COLOR      _"Background color" "black"
  105.   SF-TOGGLE     _"Flatten image"    TRUE
  106. )
  107.  
  108. (script-fu-menu-register "script-fu-alien-glow-bullet"
  109.                          "<Image>/File/Create/Web Page Themes/Alien Glow")
  110.